home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / pmail235.zip / DEFAULTS.PM~ < prev    next >
Text File  |  1992-08-31  |  3KB  |  86 lines

  1. ; DEFAULTS.PM
  2. ;
  3. ; Sample default configuration file for Pmail 2.3.
  4. ; (c) 1992, David Harris, All Rights Reserved.
  5. ;
  6. ; NOTE: this file has been renamed to DEFAULTS.PM~ in the
  7. ; distribution archive to avoid potential problems in
  8. ; installation. If you use this file, make sure you
  9. ; rename it to DEFAULTS.PM.
  10. ;
  11. ; DEFAULTS.PM allows you to create a limited form of "default
  12. ; user profile". If it exists, it must be found in the same
  13. ; directory as PMAIL.EXE. It is a simple text file consisting
  14. ; of comments (any blank line, or line starting with a semi-
  15. ; colon, space or tab) and keyword/parameter sets. Parameters
  16. ; can contain "command substitutions", or special character
  17. ; sequences which are replaced with other values at run-time.
  18. ; Command substitution is discussed in detail in the User-
  19. ; defined gateway manual UDG.TXT in UDG.ZIP with this archive.
  20. ; However, you will commonly use the following substitutions:
  21. ;
  22. ;    ~8   replaced by the first 8 chars in the username
  23. ;    ~b   replaced by the user's bindery ID (a long Hex value).
  24. ;
  25. ; Pmail 2.33 recognises the following keywords:
  26. ;
  27. ;   homebox   Where the user's home mailbox should be placed.
  28. ;      If the directory does not exist Pmail will offer to 
  29. ;      create it.
  30. ;
  31. ;   copyself  Y, N, or P - the user's default value for copy-
  32. ;      to-self. P forces Pmail to prompt for the value at
  33. ;      send time.
  34. ;
  35. ;   scratch   A work area, in which the user has full rights.
  36. ;      If you do not define a TMP or TEMP variable on your
  37. ;      system, you should provide a value for this, or else
  38. ;      external editors and some browser commands may fail.
  39. ;
  40. ;   password  Y or N, if the user's NetWare password should
  41. ;      be required at startup.
  42. ;
  43. ;   MHSApp    The default MHS application name for users.
  44. ;      Use this field if you want PMail to search another
  45. ;      mailer's mhs new mail directory by default.
  46. ;
  47. ; Other values may be added in future versions.
  48.  
  49.  
  50. ; First, define a home mailbox location: in the following
  51. ; example setting, a user called DAVID will have his home
  52. ; mailbox path set to "C:\MAIL\DAVID". A user called
  53. ; TWASHINGTON will have it set to "C:\MAIL\TWASHING".
  54.  
  55. homebox    c:\mail\~8
  56.  
  57. ; Now, set a scratch area: in this example we'll set the
  58. ; scratch area to the user's mailbox in SYS:MAIL. Note that
  59. ; although we could use NetWare syntax for this, some
  60. ; programs might not accept it when it was passed to them,
  61. ; so we use a regular DOS path instead.
  62.  
  63. scratch    Z:\MAIL\~B
  64.  
  65. ; Now we'll tell Pmail to prompt the user for copy-
  66. ; to-self at send time.
  67.  
  68. copyself   P
  69.  
  70. ; We could also force Pmail to verify the user's identity
  71. ; at startup by prompting for his NetWare password by adding
  72. ; the line:
  73. ;
  74. ; password    Y
  75. ;
  76. ; But we won't bother in this sample.
  77.  
  78. ; Lastly, since everyone at our site currently uses
  79. ; the Coordinator (tm- Action Technologies), we'll
  80. ; tell PMail to search the Coordinator's new mail
  81. ; directory by default: this saves us reinstalling
  82. ; every user on the system.
  83.  
  84. MHSApp     ATC
  85.  
  86.